home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / renegade / tcr110b2.zip / MULTNODE.110 < prev    next >
Text File  |  1994-06-02  |  2KB  |  53 lines

  1.                           ________________________
  2.  
  3.                           MULTINODE CONSIDERATIONS
  4.                           ________________________
  5.  
  6.              The largest changes to the 1.10 version of TCR were the 
  7.         multinode considerations made in the program.  Multinode callback 
  8.         doors require different options & configurations for different 
  9.         nodes.  TCR verisons prior to 1.10 didn't take into consideration 
  10.         these requirements, and anyone installing TCR on a multinode system 
  11.         would have either run into problems or had to kludge their way to 
  12.         making it work.
  13.  
  14.              There are only a couple of changes that need to be made when 
  15.         running TCR in a multinode environment.  Firstly; the node number 
  16.         should be passed to the batch file TCR.BAT, so that the command 
  17.         line would be something similar to TCR.BAT <node#>.
  18.  
  19.              Once this has been done, only a few other changes need to be 
  20.         made.  The commandline for TCR must now include /#:%1 (which, 
  21.         translating from the batch command TCR.BAT <node#> would pass the 
  22.         node number to TCR from the batch file).
  23.         
  24.                   ...
  25.                   CD\BBS\TCR
  26.                   REM TCR /D:<path to DOOR.SYS>
  27.                -> TCR /#:%1 /D:<path to DOOR.SYS>
  28.                   CD\BBS
  29.                   ...        
  30.  
  31.              That's the first part that needs to be changed.  Any other 
  32.         sections which use the files SUCCESS.TCR and LONGDIST.TCR must also 
  33.         be changed.  When the /#:<node#> parameter is included, these files 
  34.         change from SUCCESS.TCR to SUCCESS.<node#> and LONGDIST.TCR to 
  35.         LONGDIST.<node#>.
  36.  
  37.                   ...
  38.                   CD\BBS\TCR
  39.                   TCR /#:%1 /D:<path to DOOR.SYS>            
  40.                   REM IF EXIST SUCCESS.TCR <command>
  41.                -> IF EXIST SUCCESS.%1 <command>
  42.                   REM IF EXIST LONGDIST.TCR <command>
  43.                -> IF EXIST LONGDIST.%1 <command>
  44.                   CD\BBS
  45.                   ...
  46.  
  47.              Lastly, each modem for each node will require a different 
  48.         setup file.  These files are called MODEM.<node#> and are created 
  49.         by the TCR SETUP procedure.  To define your various nodes modem 
  50.         configurations, run TCR SETUP /#:<node#> for each of the nodes that 
  51.         you operate on.
  52.  
  53.